home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Collection of Tools & Utilities
/
Collection of Tools and Utilities.iso
/
c
/
cpptut22.zip
/
CAR.H
< prev
next >
Wrap
C/C++ Source or Header
|
1992-01-20
|
357b
|
21 lines
// Chapter 7 - Program 4
#ifndef CAR_H
#define CAR_H
#include "vehicle.h"
class car : public vehicle {
int passenger_load;
public:
void initialize(int in_wheels, float in_weight, int people = 4);
int passengers(void);
};
#endif
// Result of execution
//
// (this file cannot be executed)